home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / games / think / cardgamesdeluxe / installonhd < prev    next >
Text File  |  1995-03-29  |  4KB  |  157 lines

  1.  
  2. ;Instalation Script for CardGames Deluxe v1.0 by Rob Blanker Jr.
  3. ;
  4. ;Created on 26 March 1995 - Updated on 28 March 1995
  5.  
  6. (WELCOME)
  7.  
  8. (MESSAGE  "\nAbout CardGames Deluxe v1.0"
  9.           "\n\n"
  10.           "\nYour distribution set should contain 3 disks. "
  11.           "This programm will install CardGames Deluxe "
  12.           "on your HardDisk. You need to have at least 1832168 "
  13.           "bytes (1.75mb) free on your HardDisk."
  14.           "\n\n\n"
  15.           "\n©1995 Logic System Productions"
  16. )
  17.  
  18. (SET TargetDest
  19.      (ASKDIR
  20.          (PROMPT "Select or create the directory where you "
  21.                  "would like to install CardGames Deluxe on. "
  22.                  "If you have Klondike Deluxe already installed on "
  23.                  "your HardDisk, then you should select the same directory "
  24.                  "as Klondike."
  25.          )
  26.          (HELP "CardGames Deluxe and Data will be installed in the "
  27.                "directory of your choice. You may wish to create "
  28.                "a new directory for CardGames Deluxe by using the "
  29.                "'Make a new Drawer' gadget. We advice you to use the "
  30.                "same directory as Klondike Deluxe, if exists."
  31.          )
  32.          (DEFAULT "Work:")
  33.      )
  34. )
  35.  
  36. (SET @default-dest TargetDest)
  37. (SET TargetCards (TACKON TargetDest "Cards"))
  38. (SET TargetMusic (TACKON TargetDest "Music"))
  39. (SET TargetToolType (TACKON TargetDest "CardGames Deluxe"))
  40.  
  41. (IF (NOT (EXISTS TargetCards))
  42.   (MAKEDIR TargetCards (INFOS))
  43. )
  44.  
  45. (IF (NOT (EXISTS TargetMusic))
  46.   (MAKEDIR TargetMusic (INFOS))
  47. )
  48.  
  49. (COMPLETE 0)
  50.  
  51.    (COPYFILES (SOURCE "CardGames Deluxe" (INFOS))
  52.               (DEST @default-dest)
  53.    )
  54.  
  55. (COMPLETE 4)
  56.  
  57.    (COPYFILES (SOURCE "CardGames Prefs" (INFOS))
  58.               (DEST @default-dest)
  59.    )
  60.  
  61. (COMPLETE 8)
  62.  
  63.    (COPYFILES (SOURCE "CardGames.Guide" (INFOS))
  64.               (DEST @default-dest)
  65.    )
  66.  
  67. (COMPLETE 12)
  68.  
  69.    (COPYFILES (SOURCE "CardGames.Intro")
  70.               (DEST @default-dest)
  71.    )
  72.  
  73. (COMPLETE 16)
  74.  
  75.    (COPYFILES (SOURCE "CardGames.HighScore")
  76.               (DEST @default-dest)
  77.    )
  78.  
  79. (COMPLETE 20)
  80.  
  81.    (COPYFILES (SOURCE "Music/House Kraft.med")
  82.               (DEST TargetMusic)
  83.    )
  84.  
  85. (COMPLETE 24)
  86.  
  87.    (COPYFILES (SOURCE "Music/Low Transe.med")
  88.               (DEST TargetMusic)
  89.    )
  90.  
  91. (COMPLETE 28)
  92.  
  93. (SET LibsSelection (ASKOPTIONS 
  94.                       (PROMPT "\nPlease select if you want to install "
  95.                               "MedPlayer.library in your LIBS: Directory."
  96.                       )
  97.                   (HELP @askoptions-help)
  98.                   (CHOICES "MedPlayer.library (v5.2)"
  99.                           )
  100.                    )
  101. )
  102.  
  103. (IF (IN LibsSelection 0)
  104.  
  105.    (COPYFILES (SOURCE "Libs/MedPlayer.library")
  106.               (DEST "Libs:")
  107.    )
  108. )
  109.  
  110.  
  111. (COMPLETE 33)
  112.  
  113. (IF (NOT (GETASSIGN "CardGames Deluxe Disk 2" "d"))
  114.       (ASKDISK (PROMPT "\nPlease insert 'CardGames Deluxe Disk 2' "
  115.                        "in any drive."
  116.                )
  117.                (HELP @askdisk-help)
  118.                (DEST "CardGames Deluxe Disk 2")
  119.       )
  120. )
  121.  
  122.    (COPYFILES (SOURCE "CardGames Deluxe Disk 2:Cards/DragonsLair_ECS.REKO")
  123.               (DEST TargetCards)
  124.    )
  125.  
  126. (COMPLETE 49)
  127.  
  128.    (COPYFILES (SOURCE "CardGames Deluxe Disk 2:Cards/Standard_ECS.REKO")
  129.               (DEST TargetCards)
  130.    )
  131.  
  132. (COMPLETE 66)
  133.  
  134. (IF (NOT (GETASSIGN "CardGames Deluxe Disk 3" "d"))
  135.       (ASKDISK (PROMPT "\nPlease insert 'CardGames Deluxe Disk 3' "
  136.                        "in any drive."
  137.                )
  138.                (HELP @askdisk-help)
  139.                (DEST "CardGames Deluxe Disk 3")
  140.       )
  141. )
  142.  
  143.    (COPYFILES (SOURCE "CardGames Deluxe Disk 3:Cards/Dragonslair_AGA.REKO")
  144.               (DEST TargetCards)
  145.    )
  146.  
  147. (COMPLETE 99)
  148.  
  149. (IF (EXISTS TargetToolType)
  150.  
  151.   (TOOLTYPE (DEST TargetToolType)
  152.             (SETTOOLTYPE "CARDSET" "Standard_ECS.REKO")
  153.   )
  154. )
  155.  
  156. (COMPLETE 100)
  157.